home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / rpc.lha / dynload / Makefile < prev    next >
Makefile  |  1993-08-08  |  836b  |  33 lines

  1. # Copyright (C) 1990 by Glenn Gribble; all rights are reserved.
  2. # This program may be used for any purposes including inclusion in
  3. # for profit programs.  If the source is copied, the copyright notice
  4. # must be included.  Please send bug fixes/reports to glenn@synaptics.com
  5. # This program is distributed without any warranty.
  6.  
  7. .KEEP_STATE:
  8.  
  9. .SUFFIXES: .cxx
  10. CCX=CC
  11. CCXFLAGS=
  12. COMPILE.cxx=$(CCX) $(CCXFLAGS) $(CPPFLAGS) -c
  13. LINK.cxx=$(CCX) $(CCXFLAGS) $(LDFLAGS)
  14. .cxx.o:
  15.     $(COMPILE.cxx) $<
  16.  
  17. # CCXFLAGS    = -g
  18. CCXFLAGS    = -g
  19.  
  20. default: loadtest sub.o
  21.  
  22. loadtest: loadtest.o loader.o loaderUtil.o
  23.     $(LINK.cxx) -o loadtest loadtest.o loader.o loaderUtil.o
  24.  
  25. sources = README Makefile loader.cxx loader.h loadtest.cxx    \
  26.     sub.cxx \
  27.     loaderPrivate.h loaderTest.h \
  28.     loaderUtil.cxx
  29.  
  30. shar:    loader.shar
  31. loader.shar:
  32.     shar -o loader.shar $(sources)
  33.